home *** CD-ROM | disk | FTP | other *** search
/ Aminet 15 / Aminet 15 - Nov 1996.iso / Aminet / dev / basic / ace24dist.lha / ace24.lha / prgs / ExternFunc / string.c < prev    next >
Text File  |  1996-09-10  |  101b  |  10 lines

  1. /*
  2. ** Return a string to an ACE program.
  3. */
  4. char buf[] = "Hello ACE!";
  5.  
  6. char *foo()
  7. {
  8.     return buf;
  9. }
  10.